JavaScript

listObj._selectAll Method

Syntax

listObj._selectAll();

Description

Selects all rows in a List configured to allow multiple row selection.

Example

var listObj = {dialog.object}.getControl('list1');
if (listObj){
    listObj._selectAll();
}